Action hook 'customize_update_{$this->type}'
in WP Core File wp-includes/class-wp-customize-setting.php at line 704
Description
Fires when the WP_Customize_Setting::update() method is called for settings not handled as theme_mods or options. The dynamic portion of the hook name, `$this->type`, refers to the type of setting.
Occurrences
Filename |
Line Number |
wp-includes/class-wp-customize-setting.php |
704 |
Parameters
Type |
Name |
Description |
mixed |
$value |
Value of the setting. |
WP_Customize_Setting |
$setting |
WP_Customize_Setting instance. |
PHP Doc
/**
* Fires when the WP_Customize_Setting::update() method is called for settings
* not handled as theme_mods or options.
*
* The dynamic portion of the hook name, `$this->type`, refers to the type of setting.
*
* @since 3.4.0
*
* @param mixed $value Value of the setting.
* @param WP_Customize_Setting $setting WP_Customize_Setting instance.
*/